From e4ae24b124833a47328d5cf30acff042d44bfdde Mon Sep 17 00:00:00 2001 From: Jakub Bukaj Date: Sun, 26 Apr 2015 23:42:55 +0200 Subject: [PATCH] Loosen the dependency versions in Cargo.toml --- Cargo.lock | 24 +++++++++++++++--------- Cargo.toml | 36 ++++++++++++++++++------------------ src/rustversion.txt | 2 +- 3 files changed, 34 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7819cdd8..5a0710e23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,11 +4,11 @@ version = "0.2.0" dependencies = [ "advapi32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "curl 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "docopt 0.6.63 (registry+https://github.com/rust-lang/crates.io-index)", + "docopt 0.6.64 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", "git2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "git2-curl 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "git2-curl 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "hamcrest 0.1.0 (git+https://github.com/carllerche/hamcrest-rust.git)", "kernel32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -50,7 +50,7 @@ dependencies = [ "curl-sys 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -61,17 +61,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "docopt" -version = "0.6.63" +version = "0.6.64" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -110,7 +111,7 @@ dependencies = [ [[package]] name = "git2-curl" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curl 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -150,7 +151,7 @@ dependencies = [ "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "libssh2-sys 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -169,7 +170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -215,7 +216,7 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -268,6 +269,11 @@ name = "semver" version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "strsim" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "tar" version = "0.2.10" diff --git a/Cargo.toml b/Cargo.toml index 0ee9c72dd..e7a54b02c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,26 +10,26 @@ name = "cargo" path = "src/cargo/lib.rs" [dependencies] -toml = "0.1.18" -semver = "0.1.16" -curl = "0.2.2" -tar = "0.2.3" -flate2 = "0.2.0" -git2 = "0.2.1" -git2-curl = "0.2.1" -glob = "0.2.2" -time = "0.1.19" -log = "0.3.0" +curl = "0.2" +docopt = "0.6" env_logger = "0.3" -docopt = "0.6.45" -url = "0.2.23" -rustc-serialize = "0.3.1" -term = "0.2" -regex = "0.1.18" -threadpool = "0.1.4" -libc = "0.1.2" -registry = { path = "src/registry" } +flate2 = "0.2" +git2 = "0.2" +git2-curl = "0.2" +glob = "0.2" +libc = "0.1" +log = "0.3" num_cpus = "0.1" +regex = "0.1" +registry = { path = "src/registry" } +rustc-serialize = "0.3" +semver = "0.1" +tar = "0.2" +term = "0.2" +threadpool = "0.1" +time = "0.1" +toml = "0.1" +url = "0.2" [target.i686-pc-windows-gnu] dependencies = { winapi = "0.1", advapi32-sys = "0.1", kernel32-sys = "0.1" } diff --git a/src/rustversion.txt b/src/rustversion.txt index 3447d643e..6008959d3 100644 --- a/src/rustversion.txt +++ b/src/rustversion.txt @@ -1 +1 @@ -2015-04-04 +2015-04-29 -- 2.30.2